memo function - definição. O que é memo function. Significado, conceito
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

O que (quem) é memo function - definição

SOFTWARE PROGRAMMING OPTIMIZATION TECHNIQUE
Memoize; Memoisation; Memoizing; Memoise; Memo function; Memo functions; Memoised function; Memoized function; Tabling; Automatic memoization; Memoizing parsers

memo function         
<programming> (Or "memoised function") A function that remembers which arguments it has been called with and the result returned and, if called with the same arguments again, returns the result from its memory rather than recalculating it. Memo functions were invented by Professor Donald Michie of Edinburgh University. The idea was further developed by Robin Popplestone in his Pop2 language long before it was ever worked into LISP. This same principle is found at the hardware level in computer architectures which use a cache to store recently accessed memory locations. A Common Lisp package by Marty Hall <hall@aplcenmp.apl.jhu.edu> ftp://archive.cs.umbc.edu/pub/Memoization. ["'Memo' functions: and machine learning", Donald Michie, Nature, 218, 19-22, 1968]. (2002-07-02)
memoized function         
Tabling         
·noun Board; support.
II. Tabling ·noun A broad hem on the edge of a sail.
III. Tabling ·noun Act of playing at tables. ·see Table, ·noun, 10.
IV. Tabling ·noun A forming into tables; a setting down in order.
V. Tabling ·noun The letting of one timber into another by alternate scores or projections, as in shipbuilding.

Wikipédia

Memoization

In computing, memoization or memoisation is an optimization technique used primarily to speed up computer programs by storing the results of expensive function calls and returning the cached result when the same inputs occur again. Memoization has also been used in other contexts (and for purposes other than speed gains), such as in simple mutually recursive descent parsing. Although related to caching, memoization refers to a specific case of this optimization, distinguishing it from forms of caching such as buffering or page replacement. In the context of some logic programming languages, memoization is also known as tabling.